home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / doc / libntfs-3g0 / README < prev   
Encoding:
Text File  |  2007-02-20  |  2.2 KB  |  65 lines

  1.  
  2. INTRODUCTION
  3. ============
  4.  
  5. The ntfs-3g driver is an open source, freely available read/write NTFS
  6. driver, which provides safe and fast handling of the Windows XP, Windows 
  7. Server 2003, Windows 2000 and Windows Vista filesystems. Almost the full 
  8. POSIX filesystem functionality is supported, the major exceptions are 
  9. changing the file ownerships and the access rights.
  10.  
  11. The purpose of the project is to develop, continuously quality test and
  12. support a trustable, featureful and high performance solution for hardware
  13. platforms and operating systems whose users need to reliably interoperate
  14. with NTFS. Besides this practical goal, the project also aims to explore
  15. the limits of the hybrid, kernel/user space filesystem driver approach,
  16. performance, reliability and feature richness per invested effort wise.
  17.  
  18. The driver is in STABLE status. The test methods, the test suites used and
  19. testimonials can be found on
  20.  
  21.     http://www.ntfs-3g.org/quality.html
  22.  
  23. News, support answers, problem submission instructions, support and discussion 
  24. forums, performance numbers and other information are available on the project 
  25. web site at
  26.  
  27.     http://www.ntfs-3g.org
  28.  
  29.  
  30. QUICK INSTALLATION
  31. ==================
  32.     
  33. Make sure you have the basic Linux development tools and the full FUSE 
  34. package (http://fuse.sourceforge.net) is already installed correctly on 
  35. the computer. Then type:  
  36.  
  37.     ./configure
  38.     make
  39.     make install      # or 'sudo make install' if you aren't root.
  40.  
  41.  
  42. USAGE
  43. =====
  44.  
  45. If there was no error during installation then the NTFS volume can be
  46. read-write mounted for everybody the following way (unmount the volume if 
  47. it was already mounted, and replace /dev/hda1 and /mnt/windows, if needed):
  48.  
  49.     mount -t ntfs-3g /dev/hda1 /mnt/windows
  50. or
  51.     ntfs-3g /dev/hda1 /mnt/windows
  52.  
  53. You may also need to set the 'locale' option to make file names with national
  54. characters visible. Replace the below hu_HU.utf8 with the appropriate setting. 
  55.  
  56.     mount -t ntfs-3g /dev/hda1 /mnt/windows -o locale=hu_HU.utf8
  57.  
  58. Please see the ntfs-3g manual page for more options and examples.
  59.  
  60. You can also make NTFS to be mounted during boot by putting the below 
  61. line at the __END__ of the /etc/fstab file:
  62.  
  63.     /dev/hda1 /mnt/windows ntfs-3g defaults 0 0
  64.  
  65.